home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000094_news@columbia.edu _Tue May 1 10:15:47 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA12077
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 1 May 2001 10:15:47 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA00317
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 1 May 2001 09:55:38 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: renaming during ftp
  11. Date: 1 May 2001 13:55:36 GMT
  12. Organization: Columbia University
  13. Message-ID: <9cmf8o$9r$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <9cm3aa$5j4$1@kermit.esat.net>,
  17. Dermot Beirne <dermot.beirne@walshwestern.com> wrote:
  18. : Thanks for all your help on that one.
  19. : One other question,
  20. : I am using mput p* to send all p files to the remote server.  I have
  21. : redirected stdout and stderr to files, but neither of them record the files
  22. : actually being sent.  ie, I'd like to see the output from each file being
  23. : sent, as you would see if doing each file manually.
  24. :
  25. This is another thing the new Kermit FTP client can do for you:
  26.  
  27.   http://www.columbia.edu/kermit/ckermit3.html#x3
  28.  
  29. The commands are:
  30.  
  31. LOG TRANSACTIONS <filename>
  32.   Record the details of each file transfer in the file called <filename>.
  33.  
  34. SET TRANSACTION-LOG { BRIEF, FTP, VERBOSE }
  35.   Selects one of three transaction-log formats.
  36.   BRIEF = one-liners, keyword=parameter style.
  37.   FTP = WU-FTPD style.
  38.   VERBOSE = Lots of info about each file.
  39.  
  40. - Frank